home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / CADAR / Lengths / n-note-to-rest < prev    next >
Text File  |  1998-10-25  |  441b  |  26 lines

  1. n-note-to-rest which rhythm-list
  2. &optional (type 'ratio)
  3.  
  4.  
  5. converts lengths equal lengths in which-list into
  6. rest-notes
  7.  
  8.  
  9. (n-note-to-rest '(1/2 1/4) 
  10. '(1/1 1/2 1/1 1/4 1/8 1/8))
  11. ->(1/1 -1/2 1/1 -1/4 1/8 1/8)
  12.  
  13. with ticks you have to use optional type
  14. 'ticks
  15.  
  16. (n-note-to-rest '(120) 
  17. '(120 240 120 360) 'ticks)
  18. ->(-120 240 -120 360)
  19.  
  20. also works the other way around.
  21.  
  22.  
  23. (n-note-to-rest '(-120) 
  24. '(-120 240 -120 360) 'ticks)
  25. ->(120 240 120 360)
  26.